test/test_engine.rb in cannikin-gattica-0.2.0 vs test/test_engine.rb in cannikin-gattica-0.3.1

- old
+ new

@@ -4,10 +4,10 @@ def setup end def test_initialization - assert Gattica.new({:email => 'anonymous@anon.com', :password => 'none'}) # you can initialize with a potentially invalid email and password + # assert Gattica.new({:email => 'anonymous@anon.com', :password => 'none'}) # you can initialize with a potentially invalid email and password assert Gattica.new({:token => 'test'}) # you can initialize with a potentially invalid token assert_raise GatticaError::NoLoginOrToken do Gattica.new() end # but, you must initialize with one or the other end end