Пример #1
0
def test_postgres_privilege():
    postgres.installation()
    postgres.database("foobar")
    postgres.user("boo", "foo")
    postgres.privilege("all",
            user="******",
            database="foobar")
Пример #2
0
def test_postgres_privilege():
    postgres.installation()
    postgres.database("foobar")
    postgres.user("boo", "foo")
    postgres.privilege("all", user="******", database="foobar")
Пример #3
0
def test_postgres_user():
    postgres.installation()
    postgres.user("boo", "foo")
    assert_in("boo", sudo('psql -c "\\du"', user="******"))
Пример #4
0
def test_postgres_database():
    postgres.installation()
    postgres.database("foobar")
    assert_in("foobar", sudo("psql -l", user="******"))
Пример #5
0
def test_postgres_user():
    postgres.installation()
    postgres.user("boo", "foo")
    assert_in("boo", sudo('psql -c "\\du"', user="******"))
Пример #6
0
def test_postgres_database():
    postgres.installation()
    postgres.database("foobar")
    assert_in("foobar", sudo("psql -l", user="******"))