1234567891011121314151617 |
- require 'test_helper'
- describe AsciidocBib do
- it "should do comma/join on arrays" do
- _(["1"].comma_and_join).must_equal '1'
- _(["1", "2"].comma_and_join).must_equal '1 and 2'
- _(["1", "2", "3"].comma_and_join).must_equal '1, 2 and 3'
- _(["1", "2", "3", "4"].comma_and_join).must_equal '1, 2, 3 and 4'
- end
- it "should recognise integers in strings" do
- _('123'.is_i?).must_equal true
- _('12.3'.is_i?).must_equal false
- _('abc'.is_i?).must_equal false
- end
- end
|