summaryrefslogtreecommitdiff
path: root/source4/script/tests/test_samba4.pl
diff options
context:
space:
mode:
Diffstat (limited to 'source4/script/tests/test_samba4.pl')
-rwxr-xr-xsource4/script/tests/test_samba4.pl21
1 files changed, 0 insertions, 21 deletions
diff --git a/source4/script/tests/test_samba4.pl b/source4/script/tests/test_samba4.pl
deleted file mode 100755
index 8476e6e38f..0000000000
--- a/source4/script/tests/test_samba4.pl
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/perl
-
-use Test::More tests => 3;
-use FindBin qw($RealBin);
-use lib $RealBin;
-use Samba4;
-
-my $s = new Samba4($RealBin."/../../bin", undef, $RealBin."/../../setup");
-
-ok($s);
-
-is($RealBin."/../../bin", $s->{bindir});
-
-
-ok($s->write_ldb_file("tmpldb", "
-dn: a=b
-a: b
-c: d
-"));
-
-unlink("tmpldb");