Sha256: 27d9a0edc2e7c86ffdd8a109355e05b7f04d3fda6ddb3f79056c23cc9e38efb8
Contents?: true
Size: 1.33 KB
Versions: 20
Compression:
Stored size: 1.33 KB
Contents
require "#{File.dirname(__FILE__)}/../../test_helper" class StringTest < Test::Unit::TestCase context "string" do should "camelcase properly" do assert_equal "DocRiver", "doc_river".camelcase assert_equal "AWholeLottaHotdogs", "a_whole_lotta_hotdogs".camelcase assert_equal "One", "one".camelcase end should "snake_case properly" do assert_equal "one", "one".snake_case assert_equal "plenty_of_moons", "PlentyOfMoons".snake_case assert_equal "girls_make_boys_make_girls", "GirlsMakeBoysMakeGirls".snake_case end should "dasherize properly" do assert_equal "mini-coopers-rock", "MiniCoopersRock".dasherize assert_equal "only-the-best", "OnlyTheBest".dasherize assert_equal "one", "one".dasherize end should "classify properly" do assert_equal "ABird", "a_bird".classify assert_equal "Macguyver", "macguyver".classify assert_equal "RiceAndBeans", "rice_and_beans".classify assert_equal "Rice::And::Beans", "rice::and::beans".classify assert_equal "Pepper", "dr.pepper".classify assert_equal "Dr::Pepper", "dr::pepper".classify end should "have the / for filepaths" do assert_equal "/root/home/stuff", "/root"/"home"/"stuff" assert_equal "/root/box", "/root" / "box" end end end
Version data entries
20 entries across 20 versions & 1 rubygems