File: empty_background.rb

package info (click to toggle)
ruby-cucumber-core 1.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 580 kB
  • sloc: ruby: 5,763; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 223 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module Cucumber
  module Core
    module Ast
      class EmptyBackground
        def describe_to(*)
          self
        end

        def inspect
          "#<#{self.class.name}>"
        end
      end
    end
  end
end