Files
habitica/test/content/food.js
2015-09-29 08:12:10 -05:00

17 lines
425 B
JavaScript

import allFood from '../../common/script/src/content/food';
import {each} from 'lodash';
describe('Food Locales', () => {
each(allFood, (food, key) => {
describe(`${key} Food`, () => {
it('has a valid text attribute', () => {
expectValidTranslationString(food.text);
});
it('has a valid notes attribute', () => {
expectValidTranslationString(food.notes);
});
});
});
});