mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
12 lines
195 B
Ruby
12 lines
195 B
Ruby
require 'linguist/pathname'
|
|
|
|
require 'test/unit'
|
|
|
|
class TestPathname < Test::Unit::TestCase
|
|
include Linguist
|
|
|
|
def test_to_s
|
|
assert_equal "file.rb", Pathname.new("file.rb").to_s
|
|
end
|
|
end
|