mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.5 KiB
48 lines
1.5 KiB
require "spec_helper"
|
|
|
|
feature "TimeEntries" do
|
|
let!(:user){ FactoryGirl.create(:user) }
|
|
|
|
before(:each) do
|
|
visit new_user_session_path
|
|
fill_in "user_username", with: user.username
|
|
fill_in "user_password", with: user.password
|
|
click_button "Sign in"
|
|
end
|
|
|
|
scenario "User creates a new time entry", js: true do
|
|
visit new_time_entry_path
|
|
fill_in "date_id", with: "04/27/2014"
|
|
fill_in "start_time_id", with: "3:00 PM"
|
|
fill_in "end_time_id", with: "3:15 PM"
|
|
find('label.btn.btn-default', text: 'Personal').trigger('click')
|
|
fill_in "description_id", with: "My Description"
|
|
click_button "Add Time Entry"
|
|
expect(page).to have_text("My Description")
|
|
expect(TimeEntry.count).to be > 0
|
|
end
|
|
|
|
context "A bike exists" do
|
|
let!(:bike){ FactoryGirl.create(:bike) }
|
|
|
|
scenario "User creates a new bike work time entry", js: true do
|
|
visit new_time_entry_path
|
|
fill_in "date_id", with: "04/27/2014"
|
|
fill_in "start_time_id", with: "3:00 PM"
|
|
fill_in "end_time_id", with: "3:15 PM"
|
|
find('label.btn.btn-default', text: 'Personal').trigger('click')
|
|
select bike.to_s, from: "bike_id"
|
|
fill_in "description_id", with: "My Description"
|
|
click_button "Add Time Entry"
|
|
expect(page).to have_text("Task List")
|
|
expect(TimeEntry.count).to be > 0
|
|
end
|
|
end
|
|
|
|
scenario "User submits a time entry with errors", js: true do
|
|
visit new_time_entry_path
|
|
click_button "Add Time Entry"
|
|
expect(page).to have_text(:all, "can't be blank")
|
|
end
|
|
|
|
end
|
|
|