Sha256: b47b5983f33e15234327bc89a1d99ffa25c7367ea3582421eff77decfe2c8f56

Contents?: true

Size: 323 Bytes

Versions: 1

Compression:

Stored size: 323 Bytes

Contents

require 'spec_helper'

describe Object do
  describe '#must' do
    it 'is an alias for #should' do
      Object.method(:must).must == Object.method(:should)
    end
  end

  describe '#must_not' do
    it 'is an alias for #should_not' do
      Object.method(:must_not).must == Object.method(:should_not)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rspec-must-0.0.1 spec/rspec/expectations/extensions/kernel_spec.rb