Skip to content

Commit

Permalink
Adjust test adn docs to use Tapout instead of TapOut.
Browse files Browse the repository at this point in the history
  • Loading branch information
trans committed Jan 29, 2012
1 parent cead90a commit a5f4e28
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions demo/issues/default_reporter.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Instead of having each parser worry about setting the default
we can let the factory method do it when `nil` is passed as an
argument.

reporter = TapOut::Reporters.factory(nil)
reporter = Tapout::Reporters.factory(nil)

reporter #=> TapOut::Reporters::DotReporter
reporter #=> Tapout::Reporters::DotReporter

6 changes: 3 additions & 3 deletions demo/perl_adapter.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The PerlAdapter can convert the stream into TAP-Y.

stream = StringIO.new(@tap)

adapter = TapOut::PerlAdapter.new(stream)
adapter = Tapout::PerlAdapter.new(stream)

entries = adapter.to_a

Expand All @@ -36,7 +36,7 @@ Or pipe the converted stream directly to another stream.

stream = StringIO.new(@tap)

adapter = TapOut::PerlAdapter.new(stream)
adapter = Tapout::PerlAdapter.new(stream)

output = ""

Expand All @@ -57,7 +57,7 @@ Let's see if this works.

stream = StringIO.new(@tap)

adapter = TapOut::PerlAdapter.new(stream)
adapter = Tapout::PerlAdapter.new(stream)

entries = adapter.to_a

Expand Down
2 changes: 1 addition & 1 deletion demo/reporters/applique/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
$stdin = StringIO.new(@tapy)
$stdout = StringIO.new(out = '')

TapOut.cli(format)
Tapout.cli(format)
end

2 changes: 1 addition & 1 deletion lib/tapout/parsers/json.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
module Tapout

# The TAP-J Parser takes a TAP-J stream and routes it through
# a TapOut report format.
# a Tapout report format.
#
class JsonParser

Expand Down
3 changes: 2 additions & 1 deletion lib/tapout/parsers/yaml.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
module Tapout

# The TAP-Y Parser takes a TAP-Y stream and routes it through
# a TapOut report format.
# a Tapout report format.
#
class YamlParser

#
Expand Down

0 comments on commit a5f4e28

Please sign in to comment.