コード例 #1
0
ファイル: test_models.py プロジェクト: vchernin/bedrock
 def test_the_func(self):
     self.assertDictEqual(
         models.get_data_from_file_path(
             Path('content/home/dude.en-US.json')), {
                 'locale': 'en-US',
                 'card_name': 'dude',
                 'page_name': 'home',
                 'page_id': 'home-en-US-dude',
             })
     self.assertDictEqual(
         models.get_data_from_file_path(
             Path('content/the-dude/10th.de.json')), {
                 'locale': 'de',
                 'card_name': '10th',
                 'page_name': 'the-dude',
                 'page_id': 'the-dude-de-10th',
             })
コード例 #2
0
ファイル: test_models.py プロジェクト: fmarier/bedrock
 def test_the_func(self):
     self.assertDictEqual(
         models.get_data_from_file_path(Path('content/home/dude.en-US.json')),
         {
             'locale': 'en-US',
             'card_name': 'dude',
             'page_name': 'home',
             'page_id': 'home-en-US-dude',
         }
     )
     self.assertDictEqual(
         models.get_data_from_file_path(Path('content/the-dude/10th.de.json')),
         {
             'locale': 'de',
             'card_name': '10th',
             'page_name': 'the-dude',
             'page_id': 'the-dude-de-10th',
         }
     )
コード例 #3
0
ファイル: test_models.py プロジェクト: mozilla/bedrock
 def test_the_func(self):
     self.assertDictEqual(
         models.get_data_from_file_path(
             Path("content/home/dude.en-US.json")),
         {
             "locale": "en-US",
             "card_name": "dude",
             "page_name": "home",
             "page_id": "home-en-US-dude",
         },
     )
     self.assertDictEqual(
         models.get_data_from_file_path(
             Path("content/the-dude/10th.de.json")),
         {
             "locale": "de",
             "card_name": "10th",
             "page_name": "the-dude",
             "page_id": "the-dude-de-10th",
         },
     )