summaryrefslogtreecommitdiffhomepage
path: root/test/drawing/tc_str_val.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/drawing/tc_str_val.rb')
-rw-r--r--test/drawing/tc_str_val.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/drawing/tc_str_val.rb b/test/drawing/tc_str_val.rb
index e4547f62..03b0b32a 100644
--- a/test/drawing/tc_str_val.rb
+++ b/test/drawing/tc_str_val.rb
@@ -1,7 +1,6 @@
require 'tc_helper.rb'
class TestStrVal < Test::Unit::TestCase
-
def setup
@str_val = Axlsx::StrVal.new :v => "1"
@str_val_with_special_characters = Axlsx::StrVal.new :v => "a & b <c>"
@@ -26,5 +25,4 @@ class TestStrVal < Test::Unit::TestCase
doc = Nokogiri::XML(str)
assert_equal(doc.xpath("//c:pt/c:v[text()='a & b <c>']").size, 1)
end
-
end