mirror of
https://github.com/zhigang1992/FunctionalReactivePixels.git
synced 2026-05-08 01:00:38 +08:00
33 lines
689 B
Objective-C
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 |