spec/cantango/configuration/accounts_spec.rb in cantango-config-0.1.2 vs spec/cantango/configuration/accounts_spec.rb in cantango-config-0.1.3
- old
+ new
@@ -1,17 +1,17 @@
require 'spec_helper'
-require 'cantango/configuration/shared/registry/candidate_ex'
+require 'cantango/configuration/shared/registry/clazz_ex'
class UserAccount
end
class AdminAccount
end
describe CanTango::Configuration::Accounts do
subject { CanTango.config.accounts }
- it_should_behave_like "Candidate Registry" do
+ it_should_behave_like "Clazz Registry" do
let(:hash1) do
{:a => UserAccount, :b => AdminAccount}
end
end
end