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

Version Path
imap-backup-4.0.5 spec/support/shared_examples/account_flagging.rb
imap-backup-4.0.4 spec/support/shared_examples/account_flagging.rb
imap-backup-4.0.3 spec/support/shared_examples/account_flagging.rb
imap-backup-4.0.2 spec/support/shared_examples/account_flagging.rb
imap-backup-4.0.1 spec/support/shared_examples/account_flagging.rb
imap-backup-4.0.0 spec/support/shared_examples/account_flagging.rb
imap-backup-4.0.0.rc6 spec/support/shared_examples/account_flagging.rb
imap-backup-4.0.0.rc5 spec/support/shared_examples/account_flagging.rb
imap-backup-4.0.0.rc4 spec/support/shared_examples/account_flagging.rb
imap-backup-4.0.0.rc3 spec/support/shared_examples/account_flagging.rb
imap-backup-4.0.0.rc2 spec/support/shared_examples/account_flagging.rb
imap-backup-4.0.0.rc1 spec/support/shared_examples/account_flagging.rb
imap-backup-3.4.1 spec/support/shared_examples/account_flagging.rb
imap-backup-3.4.0 spec/support/shared_examples/account_flagging.rb
imap-backup-3.3.1 spec/support/shared_examples/account_flagging.rb
imap-backup-3.3.0 spec/support/shared_examples/account_flagging.rb
imap-backup-3.2.1 spec/support/shared_examples/account_flagging.rb
imap-backup-3.2.0 spec/support/shared_examples/account_flagging.rb
imap-backup-3.1.0 spec/support/shared_examples/account_flagging.rb
imap-backup-3.0.0 spec/support/shared_examples/account_flagging.rb