~ubuntu-branches/ubuntu/utopic/ruby-net-ldap/utopic-proposed

« back to all changes in this revision

Viewing changes to debian/patches/0003-remove_incompleted_ldif_test.patch

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2012-05-14 17:25:45 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120514172545-m08z3m92de2n2pfn
Tags: 0.3.1-1
* Upstream update.
* debian/watch: refer to latest net-ldap project.
* debian/copyright:
  + license changed to Expat, with permission from Ondřej Surý for the
    debian/* part.
  + format 1.0
  + add a lintian-override because Comment mentions old GPL license.
* debian/control:
  + Standards-Version 3.9.3 (no changes required)
  + Use anonscm.d.o in Vcs-* fields.
  + Update Homepage url.
  + XS-Ruby-Versions: all, this module is fine with ruby 1.8 and 1.9.
* debian/patches:
  + Unapply unneeded patches
  + 0003-fix_require_in_tests.patch: tests are called from CURDIR.
* Update debian/ruby-test-files.yaml

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
--- a/tests/testldif.rb
2
 
+++ b/tests/testldif.rb
3
 
@@ -55,13 +55,13 @@ class TestLdif < Test::Unit::TestCase
4
 
 
5
 
   # TODO, need some tests.
6
 
   # Must test folded lines and base64-encoded lines as well as normal ones.
7
 
-  def test_to_ldif
8
 
-    File.open( TestLdifFilename, "r" ) {|f|
9
 
-      ds = Net::LDAP::Dataset::read_ldif( f )
10
 
-      ds.to_ldif
11
 
-      assert_equal( true, false ) # REMOVE WHEN WE HAVE SOME TESTS HERE.
12
 
-    }
13
 
-  end
14
 
+  #def test_to_ldif
15
 
+  #  File.open( TestLdifFilename, "r" ) {|f|
16
 
+  #    ds = Net::LDAP::Dataset::read_ldif( f )
17
 
+  #    ds.to_ldif
18
 
+  #    assert_equal( true, false ) # REMOVE WHEN WE HAVE SOME TESTS HERE.
19
 
+  #  }
20
 
+  #end
21
 
 
22
 
 
23
 
 end