for Cloud Foundry. Loggregator allows users to: • Tail their application logs. • Dump a recent set of application logs (where recent is on the order of an hour). • Continually drain their application logs to 3rd party log archive and analysis services.
= Meme.new end def test_that_kitty_can_eat assert_equal "OHAI!", @meme.i_can_has_cheezburger? end def test_that_it_will_not_blend refute_match /^no/i, @meme.will_it_blend? end def test_that_will_be_skipped skip "test this later" end end describe Meme do before do @meme = Meme.new end describe "when asked about cheeseburgers" do it "must respond positively" do @meme.i_can_has_cheezburger?.must_equal "OHAI!" end end describe "when asked about blending possibilities" do it "won't say no" do @meme.will_it_blend?.wont_match /^no/i end end end https://github.com/seattlerb/minitest
basic, direct use tedious lots of useful assertions suites, before, after, lots of assertions suites, pretty doesn't work Describe, expect, have to state all tests
basic, direct use tedious lots of useful assertions suites, before, after, lots of assertions suites, pretty doesn't work Describe, expect, have to state all tests - desc, it, expect, basic assertions
basic, direct use tedious lots of useful assertions suites, before, after, lots of assertions suites, pretty doesn't work Describe, expect, have to state all tests - desc, it, expect, basic assertions