Nessuna descrizione http://j1x-huginn.herokuapp.com

user_credential_spec.rb 952B

    require 'rails_helper' describe UserCredential do describe "validation" do it { should validate_uniqueness_of(:credential_name).scoped_to(:user_id) } it { should validate_presence_of(:credential_name) } it { should validate_presence_of(:credential_value) } it { should validate_presence_of(:user_id) } end describe "mass assignment" do it { should allow_mass_assignment_of :credential_name } it { should allow_mass_assignment_of :credential_value } it { should_not allow_mass_assignment_of :user_id } end describe "cleaning fields" do it "should trim whitespace" do user_credential = user_credentials(:bob_aws_key) user_credential.credential_name = " new name " user_credential.credential_value = " new value " user_credential.save! expect(user_credential.credential_name).to eq("new name") expect(user_credential.credential_value).to eq("new value") end end end