Sha256: fe02ffa11bd58799dd9313f76846c745caed9510f00e8cc62beec088bcc09ff1

Contents?: true

Size: 402 Bytes

Versions: 1

Compression:

Stored size: 402 Bytes

Contents

require 'spec_helper'
require 'tempfile'

describe "Some another spec", :feature => ["Some Feature"], :severity => :normal do

  before(:each) do
    puts "before each"
  end

  after(:each) do
    puts "after each"
  end

  it "10 cannot be greater than 19", :story => ["Some story"]  do
    10.should > 19
  end

  it "4 must not be equal to 5" do
    5.should == 4
  end

  it "must be pending"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
allure-rspec-0.5.4 spec/another_spec.rb