mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
d5b6a7b169
* test/rss/test_maker_{0.9,1.0}.rb: sort -> do_sort. * lib/rss/maker/*.rb: changed API to RSS version independence. * lib/rss/maker/base.rb (RSS::Maker::XMLStyleSheets::XMLStyleSheet): checked required (pseudo) attributes. * lib/rss/maker/base.rb (RSS::Maker::Items): sort -> do_sort. * lib/rss/rss.rb (RSS::BaseModel.install_date_element): avoided warning. * lib/rss/0.9.rb (RSS::Rss#textinput): added convenience method. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7182 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
24 lines
448 B
Ruby
24 lines
448 B
Ruby
require "rss-testcase"
|
|
|
|
require "rss/1.0"
|
|
require "rss/2.0"
|
|
|
|
module RSS
|
|
class TestAccessor < TestCase
|
|
|
|
def test_date
|
|
channel = Rss::Channel.new
|
|
channel.do_validate = false
|
|
channel.pubDate = nil
|
|
assert_nil(channel.pubDate)
|
|
|
|
time = Time.now
|
|
channel.pubDate = time
|
|
assert_equal(time, channel.pubDate)
|
|
|
|
channel.pubDate = nil
|
|
assert_nil(channel.pubDate)
|
|
end
|
|
|
|
end
|
|
end
|