test/account_test.rb in coder_wally-0.1.0 vs test/account_test.rb in coder_wally-0.1.1

- old
+ new

@@ -1,13 +1,13 @@ require 'minitest/autorun' require 'coder_wally/account' describe 'Account' do it 'creates an account object with dynamic attributes' do - json_parsed = {'github' => 'gregstewart', 'twitter' => '_greg_stewart_'} + json_parsed = { 'github' => 'gregstewart', 'twitter' => '_greg_stewart_' } account = CoderWally::Account.new(json_parsed) account.github.must_equal 'gregstewart' account.twitter.must_equal '_greg_stewart_' end -end \ No newline at end of file +end