Sha256: 93fbec9464dada27ec2e4fe395160204e007277f58ec7117e6f9481e139c44f6

Contents?: true

Size: 1014 Bytes

Versions: 1

Compression:

Stored size: 1014 Bytes

Contents

# $Id: tc_xslt_stylesheet.rb,v 1.1 2006/03/24 10:54:55 roscopeco Exp $
begin
  require 'xml/libxml'
rescue LoadError
  require 'rubygems' and retry    
end
$TDIR = File.dirname(__FILE__)
require "#$TDIR/../ext/xml/libxslt"
require 'test/unit'

class TC_XSLT_STYLESHEET < Test::Unit::TestCase
  def setup()
    @xslt = XML::XSLT.file("#$TDIR/fuzface.xsl")
    @xslt.doc = XML::Document.file("#$TDIR/fuzface.xml")
    assert_instance_of(XML::XSLT, @xslt)
    assert_instance_of(XML::Document, @xslt.doc)
    @stylesheet = @xslt.parse
    assert_instance_of(XML::XSLT::Stylesheet, @stylesheet)
  end
  
  def tear_down()
    @xslt = nil
    @stylesheet = nil
  end
  
  def test_ruby_xslt_parse()
    assert_instance_of(XML::XSLT::Stylesheet, @stylesheet)
  end

  def test_ruby_xslt_stylesheet_to_s()
    @stylesheet.apply
    str = @stylesheet.to_s
    assert_instance_of(String, str)
  end

  def test_ruby_xslt_stylesheet_save()
    assert_raises(ArgumentError) do
      @stylesheet.save("str")
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
libxsl-ruby-0.3.6 tests/tc_xslt_stylesheet.rb