summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2013-12-16 16:16:06 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2013-12-16 16:16:06 -0800
commit960945b1316ec7238429b15a522ab7e722396996 (patch)
treecccae7231147cbf209d5ead034ceb3cf388e0493 /spec
parent6aa65ed7c16f9dc43835916cdabebae2085f0e62 (diff)
downloadffi-yajl-960945b1316ec7238429b15a522ab7e722396996.tar.gz
unpending some tests
Diffstat (limited to 'spec')
-rw-r--r--spec/ffi_yajl/json_gem_spec.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/spec/ffi_yajl/json_gem_spec.rb b/spec/ffi_yajl/json_gem_spec.rb
index df7d0a5..33d3063 100644
--- a/spec/ffi_yajl/json_gem_spec.rb
+++ b/spec/ffi_yajl/json_gem_spec.rb
@@ -147,7 +147,6 @@ describe "JSON Gem Compat API" do
end
it "and DateTime's are really ISO8601s" do
- pending "not all rubies implement DT#iso861"
dt = DateTime.new
expect(dt.to_json).to eq( %Q{"#{dt.iso8601}"} )
end
@@ -176,7 +175,6 @@ describe "JSON Gem Compat API" do
expect{ JSON.generate(1.0/0.0) }.to raise_error(JSON::GeneratorError)
end
it "should raise JSON::GeneratorError on encoding a partial UTF-8 character" do
- pending("fix half-UTF8 character encoding issue")
expect{ JSON.generate(["\xea"]) }.to raise_error(JSON::GeneratorError)
end
end