Sha256: f4b78445352f2b3e19f90c5bd1e113c918c93e00cce336e17b0e08b7873f4a9a

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.3 such_streaming_bot/test/such_streaming_bot_test.rb