Testing Word Separation : assert « Unit Test « Ruby

Home
Ruby
1.ActiveRecord
2.Array
3.CGI
4.Class
5.Collections
6.Database
7.Date
8.Design Patterns
9.Development
10.File Directory
11.GUI
12.Hash
13.Language Basics
14.Method
15.Network
16.Number
17.Rails
18.Range
19.Reflection
20.Statement
21.String
22.Threads
23.Time
24.Tk
25.Unit Test
26.Windows Platform
27.XML
Ruby » Unit Test » assert 




Testing Word Separation


require 'test/unit'

class String
  def words
    scan(/\w[\w\'\-]*/)
  end
end

def test_words
  assert_equal(%w{this is a test}"this is a test".words)
  assert_equal(%w{these are mostly words}"these are, mostly, words".words)
end

 














Related examples in the same category
1.add an assertion to test_basic that's certainly going to fail
2.assert(): Only passes if the boolean expression isn't false or nil (for example, assert 2 == 1 will always fail).
3.assert_equal(expected, actual): Only passes if the expected and actual values are equal (as compared with the == operator). assert_equal('A', 'a'.upcase) will pass.
4.assert_not_equal(expected, actual): The opposite of assert_equal. This test will fail if the expected and actual values are equal.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.