Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Brandon Stewart
3,434 PointsRuby on Rails Fixtures - Getting Error When Running Test
While trying to do the fixtures lesson I get this error:
c:\Sites\treebook>ruby -Itest test/unit/user_test.rb
Run options:
# Running tests:
EEEE
Finished tests in 0.008001s, 499.9375 tests/s, 0.0000 assertions/s.
1) Error:
test_a_user_should_enter_a_first_name(UserTest):
ActiveRecord::StatementInvalid: SQLite3::SQLException: no such table: statuses:
DELETE FROM "statuses"
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.7-x86-mingw
32/lib/sqlite3/database.rb:91:in `initialize'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.7-x86-mingw
32/lib/sqlite3/database.rb:91:in `new'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.7-x86-mingw
32/lib/sqlite3/database.rb:91:in `prepare'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/sqlite_adapter.rb:246:in `block in exec_query
'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract_adapter.rb:280:in `block in log'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/notifications/instrumenter.rb:20:in `instrument'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract_adapter.rb:275:in `log'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/sqlite_adapter.rb:242:in `exec_query'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/sqlite_adapter.rb:268:in `exec_delete'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract/database_statements.rb:101:in `delet
e'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract/query_cache.rb:14:in `delete'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:497:in `block (4 levels) in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:496:in `each'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:496:in `block (3 levels) in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:492:in `each'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:492:in `block (2 levels) in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract/database_statements.rb:192:in `trans
action'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:491:in `block in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract_adapter.rb:168:in `disable_referenti
al_integrity'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:476:in `create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:895:in `load_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:849:in `setup_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:407:in `_run__906873925__setup__1052462764__callba
cks'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:405:in `__run_callback'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:385:in `_run_setup_callbacks'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:81:in `run_callbacks'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/testing/setup_and_teardown.rb:35:in `run'
2) Error:
test_a_user_should_enter_a_last_name(UserTest):
ActiveRecord::StatementInvalid: SQLite3::SQLException: no such table: statuses:
DELETE FROM "statuses"
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.7-x86-mingw
32/lib/sqlite3/database.rb:91:in `initialize'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.7-x86-mingw
32/lib/sqlite3/database.rb:91:in `new'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.7-x86-mingw
32/lib/sqlite3/database.rb:91:in `prepare'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/sqlite_adapter.rb:246:in `block in exec_query
'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract_adapter.rb:280:in `block in log'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/notifications/instrumenter.rb:20:in `instrument'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract_adapter.rb:275:in `log'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/sqlite_adapter.rb:242:in `exec_query'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/sqlite_adapter.rb:268:in `exec_delete'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract/database_statements.rb:101:in `delet
e'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract/query_cache.rb:14:in `delete'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:497:in `block (4 levels) in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:496:in `each'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:496:in `block (3 levels) in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:492:in `each'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:492:in `block (2 levels) in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract/database_statements.rb:192:in `trans
action'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:491:in `block in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract_adapter.rb:168:in `disable_referenti
al_integrity'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:476:in `create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:895:in `load_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:849:in `setup_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:407:in `_run__906873925__setup__1052462764__callba
cks'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:405:in `__run_callback'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:385:in `_run_setup_callbacks'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:81:in `run_callbacks'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/testing/setup_and_teardown.rb:35:in `run'
3) Error:
test_a_user_should_enter_a_profile_name(UserTest):
ActiveRecord::StatementInvalid: SQLite3::SQLException: no such table: statuses:
DELETE FROM "statuses"
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.7-x86-mingw
32/lib/sqlite3/database.rb:91:in `initialize'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.7-x86-mingw
32/lib/sqlite3/database.rb:91:in `new'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.7-x86-mingw
32/lib/sqlite3/database.rb:91:in `prepare'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/sqlite_adapter.rb:246:in `block in exec_query
'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract_adapter.rb:280:in `block in log'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/notifications/instrumenter.rb:20:in `instrument'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract_adapter.rb:275:in `log'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/sqlite_adapter.rb:242:in `exec_query'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/sqlite_adapter.rb:268:in `exec_delete'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract/database_statements.rb:101:in `delet
e'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract/query_cache.rb:14:in `delete'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:497:in `block (4 levels) in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:496:in `each'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:496:in `block (3 levels) in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:492:in `each'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:492:in `block (2 levels) in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract/database_statements.rb:192:in `trans
action'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:491:in `block in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract_adapter.rb:168:in `disable_referenti
al_integrity'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:476:in `create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:895:in `load_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:849:in `setup_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:407:in `_run__906873925__setup__1052462764__callba
cks'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:405:in `__run_callback'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:385:in `_run_setup_callbacks'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:81:in `run_callbacks'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/testing/setup_and_teardown.rb:35:in `run'
4) Error:
test_a_user_should_have_a_unique_profile_name(UserTest):
ActiveRecord::StatementInvalid: SQLite3::SQLException: no such table: statuses:
DELETE FROM "statuses"
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.7-x86-mingw
32/lib/sqlite3/database.rb:91:in `initialize'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.7-x86-mingw
32/lib/sqlite3/database.rb:91:in `new'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.7-x86-mingw
32/lib/sqlite3/database.rb:91:in `prepare'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/sqlite_adapter.rb:246:in `block in exec_query
'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract_adapter.rb:280:in `block in log'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/notifications/instrumenter.rb:20:in `instrument'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract_adapter.rb:275:in `log'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/sqlite_adapter.rb:242:in `exec_query'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/sqlite_adapter.rb:268:in `exec_delete'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract/database_statements.rb:101:in `delet
e'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract/query_cache.rb:14:in `delete'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:497:in `block (4 levels) in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:496:in `each'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:496:in `block (3 levels) in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:492:in `each'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:492:in `block (2 levels) in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract/database_statements.rb:192:in `trans
action'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:491:in `block in create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/connection_adapters/abstract_adapter.rb:168:in `disable_referenti
al_integrity'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:476:in `create_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:895:in `load_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activerecord-3.2.13/lib
/active_record/fixtures.rb:849:in `setup_fixtures'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:407:in `_run__906873925__setup__1052462764__callba
cks'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:405:in `__run_callback'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:385:in `_run_setup_callbacks'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/callbacks.rb:81:in `run_callbacks'
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activesupport-3.2.13/li
b/active_support/testing/setup_and_teardown.rb:35:in `run'
4 tests, 0 assertions, 0 failures, 4 errors, 0 skips
6 Answers
Jason Seifer
Treehouse Guest TeacherHi Brandon Stewart ! Try running the following and then run the test again to see if it works:
rake db:migrate
rake db:test:prepare
Harrison Bolin
3,975 PointsDon't know a lot about Ruby (actually, non at all :P ) but it looks like there was some installer issue. Possibly something is not installed and/or outdated.
Or maybe your browsers not compatible? It seems to be the same error message over and over again. It tested it 4 times, got 4 errors, so it could just be a little syntax error
[EDIT] Notice at the begging of each report it says something about statuses. Maybe spelled wrong somewhere?
Error: testauser_should_have_a_unique_profile_name(UserTest): ActiveRecord::StatementInvalid: SQLite3::SQLException: no such table: statuses: DELETE FROM "statuses"
It says "testauser" not "testuser"
So your problems could be: 1: You did not use SQL right, possibly messed up with the "statuses" table. Possibly just misspelled 2: You could have spelled "testauser" wrong. Again, I do not know ruby, I am just guessing here. :P
Hope this helped!
Brandon Stewart
3,434 PointsI was looking for "testauser" but I don't even see that anywhere in the files. It might be in the database somewhere but I'm not sure how to check the database yet :$
Thanks for the reply I'll try and find the misspelling
Harrison Bolin
3,975 PointsI think it might be because you might have used "test_user" instead of "auser"
Brandon Stewart
3,434 PointsThanks a ton Jason, I'm pretty sure this fixed it! I'm coding this while at work and then pulling the files from github when i get home, and I must have forgotten to do that somewhere.
Thanks for the help!
Harrison Bolin
3,975 PointsGlad you found your error. Too bad I don't know ruby :P