Sha256: 028eec9f520e435d681b94d61a5bdca585315a9fce01558a5400c7d17a754906

Contents?: true

Size: 378 Bytes

Versions: 5

Compression:

Stored size: 378 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
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
allure-rspec-0.5.3 spec/another_spec.rb
allure-rspec-0.5.2 spec/another_spec.rb
allure-rspec-0.5.1 spec/another_spec.rb
allure-rspec-0.5.0 spec/another_spec.rb
allure-rspec-0.4.2 spec/another_spec.rb