Sha256: bdb0a021414d47dbf4b6e6c1922930e2ade2ae51279034902a6f85b735aef86f

Contents?: true

Size: 366 Bytes

Versions: 1

Compression:

Stored size: 366 Bytes

Contents

require 'minitest/autorun'
require 'minitest/pride'

require_relative '../src/such_streaming_bot.rb'

class TestSuchStreamingBot <  MiniTest::Test

  def test_matches_hello_world
    assert_equal true, (SuchStreamingBot.matches? 'hello world')
  end

  def test_doesnt_match_hello_canada
    assert_equal false, (SuchStreamingBot.matches? 'hello canada')
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
twitter_bot_generator-0.2.2 such_streaming_bot/test/such_streaming_bot_test.rb