Skip to content

Commit

Permalink
pisi.xmldoc -> pisi.data
Browse files Browse the repository at this point in the history
  • Loading branch information
examachine committed Feb 22, 2017
1 parent fecc0ed commit 3545487
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion tests/archivetests.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from pisi import sourcearchive
from pisi import fetcher
from pisi import util
from pisi.xmldoc import SpecFile
from pisi.data import SpecFile
from pisi import uri

import testcase
Expand Down
2 changes: 1 addition & 1 deletion tests/conflicttests.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def setUp(self):
ctx.installdb.install('inst4', '2.1', '2', '3')

for name in packages.keys():
pkg = pisi.xmldoc.specfile.Package()
pkg = pisi.data.specfile.Package()
pkg.name = name
pkg.conflicts = packages[name]
d_t[name] = pkg
Expand Down
2 changes: 1 addition & 1 deletion tests/dependencytests.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import unittest
import os

from pisi.xmldoc.dependency import *
from pisi.data.dependency import *

class DependencyTestCase(unittest.TestCase):
def setUp(self):
Expand Down
2 changes: 1 addition & 1 deletion tests/fetchertests.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

import pisi.context as ctx
import pisi.api
from pisi.xmldoc import SpecFile
from pisi.data import SpecFile
from pisi import fetcher
from pisi import util
from pisi import uri
Expand Down
2 changes: 1 addition & 1 deletion tests/filestests.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import pisi.context as ctx
import pisi.api
import pisi.db.install as installdb
import pisi.xmldoc.files as files
import pisi.data.files as files
from pisi import util

import testcase
Expand Down
2 changes: 1 addition & 1 deletion tests/graphtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import unittest
import os

from pisi import graph
from pisi.data import graph

class GraphTestCase(unittest.TestCase):
def setUp(self):
Expand Down
2 changes: 1 addition & 1 deletion tests/metadatatests.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import unittest
import os

from pisi.xmldoc import metadata
from pisi.data import metadata
from pisi import util

class MetaDataTestCase(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/packagedbtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import pisi.api
from pisi.db import PackageDB, Repo
from pisi import util
from pisi.xmldoc import SpecFile
from pisi.data import SpecFile

import testcase
class PackageDBTestCase(testcase.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/packagetests.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from pisi import util
import pisi.context as ctx
from pisi.xmldoc import package
from pisi.data import package

import testcase
class PackageTestCase(testcase.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/sourcedbtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import pisi.api
import pisi.db.source as sourcedb
from pisi import util
from pisi.xmldoc import SpecFile
from pisi.data import SpecFile

import testcase
class SourceDBTestCase(testcase.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/specfiletests.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import unittest
import os

import pisi.xmldoc.specfile as specfile
import pisi.data.specfile as specfile
import pisi.util as util

class SpecFileNewTestCase(unittest.TestCase):
Expand Down

0 comments on commit 3545487

Please sign in to comment.