Sha256: 1d3eeb24ca87b1662d5104c1f84f33320c91f002e50365beb2d620de25e94b02

Contents?: true

Size: 422 Bytes

Versions: 2

Compression:

Stored size: 422 Bytes

Contents

config do
  set(:models => Pathname(File.dirname(__FILE__)).join("models"))
end

define "User Story" do
  meta do
    title
    status :in => %w(draft published)
    epic_title
  end

  content do
    persona "p strong:first-child"
    behavior "p strong:second-child"
    goal "p strong:third-child"
  end

  actions do
    def defined_helper_method
      true
    end

    def custom_action
      true
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
brief-1.2.0 spec/fixtures/example/brief.rb
brief-1.1.0 spec/fixtures/example/brief.rb