21croissants/maniok_bdd

View on GitHub
examples/simplest.feature.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'spec_helper'

Feature 'The Simplest Feature' do

  Description <<TXT
      A description
TXT

  Scenario "The Simplest Scenario" do

    Given "some pre-conditions" do

    end

    When "something happens" do

    end

    Then "things should work as expected" do

    end
  end
end