Remedied requirement to bring your own table to the flipping method · sidekiq/sidekiq@12b1b30

1 min read Original article ↗
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

# encoding: utf-8

12

require 'helper'

23
34

class TestSidekiq < MiniTest::Unit::TestCase

@@ -24,4 +25,13 @@ class TestSidekiq < MiniTest::Unit::TestCase

2425

end

2526

end

2627
28+

describe "❨╯°□°❩╯︵┻━┻" do

29+

before { $stdout = StringIO.new }

30+

after { $stdout = STDOUT }

31+
32+

it "allows angry developers to express their emotional constitution and remedies it" do

33+

Sidekiq.❨╯°□°❩╯︵┻━┻

34+

assert_equal "Calm down, bro\n", $stdout.string

35+

end

36+

end

2737

end