Sha256: 954a31e5b6102252d88844ae14d0dc1fa75dd494c0d060de5178c5453a00708e

Contents?: true

Size: 350 Bytes

Versions: 3

Compression:

Stored size: 350 Bytes

Contents

# This test isn't part of the actual suite it's to manually test the formatters.
require 'nc'

RSpec.describe 'to test the gem' do
  it 'passes' do
    expect(0).to eq 0
  end

  it 'fails' do
    expect(1).to eq 2
  end

  it 'fails again' do
    expect(3).to eq 4
  end

  it 'pending' do
    pending 'for a reason'
    expect(5).to eq 6
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
gameboard-3.1.0 vendor/bundle/ruby/2.3.0/gems/rspec-nc-0.3.0/spec/test.rb
gameboard-3.0.0 vendor/bundle/ruby/2.3.0/gems/rspec-nc-0.3.0/spec/test.rb
rspec-nc-0.3.0 spec/test.rb