1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Remedied requirement to bring your own table to the flipping method

See https://twitter.com/mperham/status/314141110513586177
This commit is contained in:
Christoph Olszowka 2013-03-19 23:54:55 +01:00
parent d54422b14e
commit 12b1b30147
2 changed files with 11 additions and 1 deletions

View file

@ -27,7 +27,7 @@ module Sidekiq
:profile => false,
}
def self.°°
def self.°°
puts "Calm down, bro"
end

View file

@ -1,3 +1,4 @@
# encoding: utf-8
require 'helper'
class TestSidekiq < MiniTest::Unit::TestCase
@ -24,4 +25,13 @@ class TestSidekiq < MiniTest::Unit::TestCase
end
end
describe "❨╯°□°❩╯︵┻━┻" do
before { $stdout = StringIO.new }
after { $stdout = STDOUT }
it "allows angry developers to express their emotional constitution and remedies it" do
Sidekiq.°°
assert_equal "Calm down, bro\n", $stdout.string
end
end
end