Files
FunctionalReactivePixels/FRPTests/FRPGalleryViewModelTests.m
2013-10-21 20:24:58 -04:00

33 lines
689 B
Objective-C

//
// FRPGalleryViewModelTests.m
// FRP
//
// Created by Ash Furrow on 10/21/2013.
// Copyright (c) 2013 Ash Furrow. All rights reserved.
//
#import "Specta.h"
#import <OCMock/OCMock.h>
#import "FRPGalleryViewModel.h"
#import "FRPPhotoImporter.h"
SpecBegin(FRPGalleryViewModel)
describe(@"FRPGalleryViewModel", ^{
beforeAll(^{
// This is run once and only once before all of the examples
// in this group and before any beforeEach blocks.
});
beforeEach(^{
// This is run before each example.
});
it(@"should be initialized and call importPhotos", ^{
STAssertTrue(false, @"Test not implemented.");
});
});
SpecEnd