Sha256: 80a53d70e99340009ab919d483a7d33eadedee92d7567349e1e58997a5b0e6a8
Contents?: true
Size: 656 Bytes
Versions: 36
Compression:
Stored size: 656 Bytes
Contents
shared_examples "it flags the account as modified" do it "flags that the account has changed" do expect(account[:modified]).to be_truthy end end shared_examples "it doesn't flag the account as modified" do it "does not flag that the account has changed" do expect(account[:modified]).to be_falsey end end shared_examples "it flags the account to be deleted" do it "flags that the account is to be deleted" do expect(account[:delete]).to be_truthy end end shared_examples "it doesn't flag the account to be deleted" do it "does not flags that the account is to be deleted" do expect(account[:delete]).to be_falsey end end
Version data entries
36 entries across 36 versions & 1 rubygems