Esempio n. 1
0
    def test_should_return_the_first_mount_point(self):
	mount_points = _mount_points_from_df_output(StringIO.StringIO(
	'Filesystem         1024-blocks      Used Available Capacity Mounted on\n'
	'/dev/disk0s2         243862672 121934848 121671824      51% /\n'
	))

	self.assertEquals(['/'], list(mount_points))
    def test_should_return_the_first_mount_point(self):
        mount_points = _mount_points_from_df_output(MyStringIO(
        'Filesystem         1024-blocks      Used Available Capacity Mounted on\n'
        '/dev/disk0s2         243862672 121934848 121671824      51% /\n'
        ))

        self.assertEquals(['/'], list(mount_points))
Esempio n. 3
0
    def test_should_skip_the_first_line(self):
        mount_points = _mount_points_from_df_output(
            StringIO.StringIO(
                'Filesystem         1024-blocks      Used Available Capacity Mounted on\n'
            ))

        self.assertEquals([], list(mount_points))
Esempio n. 4
0
    def test_should_return_mount_point_with_white_spaces(self):
	mount_points = _mount_points_from_df_output(StringIO.StringIO(
	'Filesystem         1024-blocks      Used Available Capacity Mounted on\n'
	'/dev/disk0s2         243862672 121934848 121671824      51% /\n'
	'/dev/disk1s1         156287996 123044260  33243736      79% /Volumes/with white spaces\n'
	))

	self.assertEquals(['/', '/Volumes/with white spaces'], list(mount_points))
    def test_should_return_mount_point_with_white_spaces(self):
        mount_points = _mount_points_from_df_output(MyStringIO(
        'Filesystem         1024-blocks      Used Available Capacity Mounted on\n'
        '/dev/disk0s2         243862672 121934848 121671824      51% /\n'
        '/dev/disk1s1         156287996 123044260  33243736      79% /Volumes/with white spaces\n'
        ))

        self.assertEquals(['/', '/Volumes/with white spaces'], list(mount_points))
Esempio n. 6
0
    def test_should_skip_the_first_line(self):
	mount_points = _mount_points_from_df_output(StringIO.StringIO(
	'Filesystem         1024-blocks      Used Available Capacity Mounted on\n'
	))

	self.assertEquals([], list(mount_points))