describe RestPack::Core::Service::Models::Application do it { should validate_presence_of(:name) } it { should validate_presence_of(:account_id) } it { should ensure_length_of(:name).is_at_most(256) } it { should have_many(:hosts) } it { subject.class.table_name.should == 'restpack_applications' } context "default values" do it "has a random api_token" do app1 = create(:application) app2 = create(:application) app1.api_token.length.should == 32 app1.api_token.should_not == app2.api_token end end end