source: trunk/server/selftest/test_samba4.pl@ 788

Last change on this file since 788 was 745, checked in by Silvan Scherrer, 13 years ago

Samba Server: updated trunk to 3.6.0

File size: 317 bytes
Line 
1#!/usr/bin/perl
2
3use Test::More tests => 3;
4use FindBin qw($RealBin);
5use lib $RealBin;
6use lib "$RealBin/target";
7use Samba4;
8
9my $s = new Samba4("bin", undef, $RealBin."/../setup");
10
11ok($s);
12
13is("bin", $s->{bindir});
14
15ok($s->write_ldb_file("tmpldb", "
16dn: a=b
17a: b
18c: d
19"));
20
21unlink("tmpldb");
Note: See TracBrowser for help on using the repository browser.