Displaying 1 result from an estimated 1 matches for "viewtimesheet".
2006 May 03
1
Nubee Fixtures + Tests problem
...should be
accesible from within my functional test, but its not!
Timesheets.yml :
first_timesheet:
status: 2
start_date: 2006-04-24
cost: 10
employee: 444
id: 10683
charge: 20
My Test :
class AdminTimesheetsControllerTest < Test::Unit::TestCase
fixtures :timesheets
def test_viewTimesheet
get :viewTimesheet,:id=>@timesheets["first_timesheet"].id
assert_template ''viewTimesheet''
end
end
The error :
test_viewTimesheet(AdminTimesheetsControllerTest):
NoMethodError: You have a nil object when you didn''t expect it!
You might have expecte...