File: demo_spec.rb

package info (click to toggle)
ruby-rspec-logsplit 0.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 136 kB
  • sloc: ruby: 133; makefile: 7
file content (13 lines) | stat: -rw-r--r-- 177 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'spec_helper'

describe "foo" do
  context "bar" do
    it "baz" do
      Demo.logger.info "bar"
    end

    it "qux" do
      Demo.logger.info "qux"
    end
  end
end