summaryrefslogtreecommitdiff
path: root/git/test/db/test_base.py
blob: 2a882d0af4ebf12d8d66aef26287277ac93a4b3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
#
# This module is part of GitDB and is released under
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
from lib import *
from git.db import RefSpec

class TestBase(TestDBBase):

	needs_ro_repo = False

	@with_rw_directory
	def test_basics(self, path):
		self.failUnlessRaises(ValueError, RefSpec, None, None)
		rs = RefSpec(None, "something")
		assert rs.force == False
		assert rs.delete_destination()
		assert rs.source is None
		assert rs.destination == "something"