Sha256: b0d6aeda3135f4730144b38e51258f2633abc1164d8e417818c5111684ca8ffe

Contents?: true

Size: 428 Bytes

Versions: 3

Compression:

Stored size: 428 Bytes

Contents

require 'spec_helper'
require 'tempfile'

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

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

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

  it "10 cannot be greater than 19", :story => ["Some story"], :testId => 10  do
    expect(10).to be > 19
  end

  it "4 must not be equal to 5", :testId => 20 do
    expect(5).to be eql(4)
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
allure-rspec-0.8.0 spec/another_spec.rb
allure-rspec-0.7.7 spec/another_spec.rb
allure-rspec-0.7.6 spec/another_spec.rb