~ubuntu-branches/ubuntu/vivid/zentyal-core/vivid-proposed

« back to all changes in this revision

Viewing changes to src/EBox/t/Backup.t

  • Committer: Package Import Robot
  • Author(s): Jorge Salamero Sanz
  • Date: 2012-08-28 10:03:33 UTC
  • Revision ID: package-import@ubuntu.com-20120828100333-oz3n5kpav4z0tl27
Tags: 2.3.21+quantal1
New upstream release for Quantal

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
use strict;
2
 
use warnings;
3
 
 
4
 
use lib '../..';
5
 
 
6
 
use EBox::Backup::Test;
7
 
 
8
 
use English qw(-no_match_vars);
9
 
 
10
 
if ($EUID == 0 or $UID == 0) {
11
 
  die "This test can not be runned by the root user";
12
 
}
13
 
 
14
 
EBox::Backup::Test->runtests;
15
 
 
16
 
1;