Sha256: 08567848263d5af81ad754fc9430143e2de63631ff088ddcab518fa15e6ddbdd

Contents?: true

Size: 437 Bytes

Versions: 1

Compression:

Stored size: 437 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

  helpers do
    def defined_helper_method
      true
    end
  end
end

action "custom command" do
  $custom_command = true
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
brief-1.0.0 spec/fixtures/example/brief.rb